home *** CD-ROM | disk | FTP | other *** search
- head 1.4;
- branch ;
- access ;
- symbols ;
- locks ; strict;
- comment @ * @;
-
-
- 1.4
- date 89.07.01.02.40.34; author rab; state Exp;
- branches ;
- next 1.3;
-
- 1.3
- date 89.06.23.11.30.38; author rab; state Exp;
- branches ;
- next 1.2;
-
- 1.2
- date 88.06.29.14.58.05; author ouster; state Exp;
- branches ;
- next 1.1;
-
- 1.1
- date 88.06.26.15.38.23; author ouster; state Exp;
- branches ;
- next ;
-
-
- desc
- @@
-
-
- 1.4
- log
- @First char in file, '/', had been deleted.
- @
- text
- @/*
- * Copyright (c) 1983, 1987 Regents of the University of California.
- * All rights reserved. The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
- *
- * @@(#)resolv.h 5.5 (Berkeley) 5/12/87
- */
-
- #ifndef _RESOLV
- #define _RESOLV
-
- /*
- * Global defines and variables for resolver stub.
- */
-
-
- #define MAXNS 3 /* max # name servers we'll track */
- #define MAXDNSRCH 3 /* max # default domain levels to try */
- #define LOCALDOMAINPARTS 2 /* min levels in name that is "local" */
-
- #define RES_TIMEOUT 4 /* seconds between retries */
-
- struct state {
- int retrans; /* retransmition time interval */
- int retry; /* number of times to retransmit */
- long options; /* option flags - see below. */
- int nscount; /* number of name servers */
- struct sockaddr_in nsaddr_list[MAXNS]; /* address of name server */
- #define nsaddr nsaddr_list[0] /* for backward compatibility */
- u_short id; /* current packet id */
- char defdname[MAXDNAME]; /* default domain */
- char *dnsrch[MAXDNSRCH+1]; /* components of domain to search */
- };
-
- /*
- * Resolver options
- */
- #define RES_INIT 0x0001 /* address initialized */
- #define RES_DEBUG 0x0002 /* print debug messages */
- #define RES_AAONLY 0x0004 /* authoritative answers only */
- #define RES_USEVC 0x0008 /* use virtual circuit */
- #define RES_PRIMARY 0x0010 /* query primary server only */
- #define RES_IGNTC 0x0020 /* ignore trucation errors */
- #define RES_RECURSE 0x0040 /* recursion desired */
- #define RES_DEFNAMES 0x0080 /* use default domain name */
- #define RES_STAYOPEN 0x0100 /* Keep TCP socket open */
- #define RES_DNSRCH 0x0200 /* search up local domain tree */
-
- #define RES_DEFAULT (RES_RECURSE | RES_DEFNAMES | RES_DNSRCH)
-
- extern struct state _res;
- extern char *p_cdname(), *p_rr(), *p_type(), *p_class();
-
- #endif /* _RESOLV */
- @
-
-
- 1.3
- log
- @*** empty log message ***
- @
- text
- @d1 1
- a1 1
- *
- @
-
-
- 1.2
- log
- @Add ifdefs so that file can't be processed twice.
- @
- text
- @d1 1
- a1 2
-
- /*
- d54 1
- a54 1
- #endif _RESOLV
- @
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @d10 3
- d54 2
- @
-